# load packages
library(tidyverse)
# Loading the Boston city payroll
payroll <- read.csv("../data/bostonpayroll2013.csv", stringsAsFactors=F)
Let’s look at the data in R Markdown with a new package called DT that uses the Datatables jquery library.
library(DT)
datatable(payroll)